* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(24, 23, 23, 0.7);
}

header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

header nav a {
    margin: 0 20px;
    color: #ece6e6;
    text-decoration: none;
    font-size: 20px;
}

header nav a:hover {
    text-decoration: underline;
}

.logo img {
    height: 50px;
    margin: 0 20px;
}

.about-us-fullscreen {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 80px 20px 20px;
}
.about-us {
    max-width: 1200px;
    width: 100%;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.barber-image {
    max-width: 46%;
    height: auto;
    margin-left: -23em;
}

.about-text {
    flex: 1;
}

.title-container {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.decorative-light {
    width: 65px; 
    height: auto;
    margin-right: 20px; 
    margin-left: 40px;
    margin-top: -6em;
}
.about-us h1 {
    font-size: 6em;
    margin-bottom: 0; 
    margin-left: 0;
    margin-top: -1em; 
}

.about-us p {
    font-size: 1.65em;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: bold;
    margin-left: 120px; 
}


footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 11px;
    background-color: rgba(24, 23, 23, 0.7);
    font-size: 14px;
}

